home *** CD-ROM | disk | FTP | other *** search
/ Champak 86 / (Vol 86) My Disc.iso / Games / restaurante_1422.swf / scripts / DefineSprite_454 / frame_1 / DoAction.as
Text File  |  2009-04-29  |  362b  |  14 lines

  1. var chrono = _parent.chrono;
  2. chrono.addListener(this);
  3. this.onUpdate = function()
  4. {
  5.    this.tf.text = _parent.chrono.getNumericTime();
  6.    this.s_mc._rotation = chrono.seconds * 360 / 60;
  7.    this.m_mc._rotation = chrono.minutes * 360 / 60;
  8. };
  9. this.onReset = function()
  10. {
  11.    this.tf.text = "0:00";
  12.    this.s_mc._rotation = this.m_mc._rotation = 0;
  13. };
  14.